home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 2003 September / PC Answers September 2003.iso / Software / freeware / pixeltoolbox / Setup.exe / Main / PixelToolbox.exe / PixelToolbox.dxr / Interface_380_status.ls < prev    next >
Encoding:
Text File  |  2002-06-08  |  333 b   |  18 lines

  1. on mouseEnter me
  2.   put "Status messages and tool tips. Shift + click to disable/enable." into field "status"
  3. end
  4.  
  5. on mouseLeave me
  6.   put EMPTY into field "status"
  7. end
  8.  
  9. on mouseDown me
  10.   if the shiftDown then
  11.     if sprite(232).blend = 90 then
  12.       sprite(232).blend = 0
  13.     else
  14.       sprite(232).blend = 90
  15.     end if
  16.   end if
  17. end
  18.